-
Notifications
You must be signed in to change notification settings - Fork 65
mhandles.cpp, mhandles.h: translated #27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
| return TRUE; | ||
| } | ||
| if (found != -1) // nalezen jen handle se shodnym cislem | ||
| if (found != -1) // found only handle with matching number |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
matching -> same
| ::LeaveCriticalSection(&CriticalSection); | ||
|
|
||
| BOOL ret = ::FreeLibrary(hLibModule); // obsahuje volani destruktoru globalek DLLka, muze obsahovat message-loopu | ||
| BOOL ret = ::FreeLibrary(hLibModule); // contains call to DLL destructor, may contain message-loop |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// contains calls to the destructors of the DLL's globals, may contain a message-loop
| ::LeaveCriticalSection(&CriticalSection); | ||
|
|
||
| ::FreeLibraryAndExitThread(hLibModule, dwExitCode); // obsahuje volani destruktoru globalek DLLka, muze obsahovat message-loopu | ||
| ::FreeLibraryAndExitThread(hLibModule, dwExitCode); // contains call to DLL destructor, may contain message-loop |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// contains calls to the destructors of the DLL's globals, may contain a message-loop
No description provided.